home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacGames Sampler
/
PHT MacGames Bundle.iso
/
MacSource Folder
/
Samples from the CD
/
C and C++
/
POSIX
/
ThinkCPosix
/
utime.h
< prev
Wrap
Text File
|
1992-09-18
|
144b
|
14 lines
/* $Id: $ */
#pragma once
#include "ThinkCPosix.h"
struct utimbuf {
time_t actime;
time_t modtime;
};
int utime(char*, struct utimbuf*);